/* General Styling */

.fpage {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    /* Light background color */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.my-5 {
    margin-top: 1rem;
    margin-bottom: 3rem;
}


/* First Page Section */

.fpage {
    padding: 50px 0;
    background-color: #ffffff;
    /* White background for the section */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fpage p {
    margin-bottom: 1rem;
    color: #333;
    /* Darker text color for readability */
}

.fpage h4 {
    color: #004A9F;
    /* Blue color for headings */
    margin-bottom: 1rem;
}

.fpage .col-sm-7 {
    padding-right: 30px;
}

.fpage .col-sm-5 img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    /* Rounded corners for the image */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fpage .row+.row {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .fpage .col-sm-7,
    .fpage .col-sm-5,
    .fpage .col-sm-6 {
        padding: 0 15px;
        text-align: center;
    }
    .fpage .col-sm-5 img {
        margin-top: 20px;
    }
}


/* Mission and Vision Section */

.fpage .col-sm-6 h4 {
    margin-top: 0;
    font-size: 1.5rem;
}

.fpage .col-sm-6 p {
    margin-bottom: 1rem;
    color: #555;
    /* Slightly lighter text color for contrast */
}


/* Link Styling */

a {
    color: #004A9F;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.about-us-section {
    position: relative;
    background-image: url('/images/con.jpg');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 30vh;
    /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* Text color to contrast with the background */
    text-align: center;
    /* Center text alignment */
}


/* Overlay Styling */

.about-us-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
}


/* Content Styling */

.about-us-section .content {
    position: relative;
    z-index: 1;
    /* Ensure content is above the overlay */
    padding: 20px;
}


/* Section Header Styling */

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    color: #fff;
}


/* Breadcrumb Styling */

.breadcrumb {
    background-color: transparent;
    padding: 10px 15px;
    margin: 0;
    list-style: none;
    border-radius: 4px;
    display: inline-block;
}

.breadcrumb li {
    display: inline;
    font-size: 14px;
}

.breadcrumb li a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb li a:hover {
    text-decoration: none;
    color: blue;
}

.breadcrumb .active {
    color: white;
}

.showmenu {
    display: flex !important;
    width: 100px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #212222;
        width: 100%;
        position: absolute;
        top: 50px;
        right: 0;
        padding: 10px 0;
        z-index: 999;
    }
    .navbar-toggler {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
    .hamburger-icon {
        display: block;
    }
    .navbar-collapse.showmenu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        padding-left: 20px;
    }
    nav ul li {
        display: block;
        width: 100%;
        border-bottom: 0.9px solid #929497;
    }
    nav ul li a {
        padding: 10px 20px;
        display: block;
        color: #929497;
        text-decoration: none;
        text-align: left;
        border-bottom: 2px solid #013366;
    }
    nav ul li a:hover {
        background-color: #016604;
    }
}